home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / isinf.man < prev    next >
Text File  |  1989-08-04  |  1KB  |  42 lines

  1. '\" Copyright 1989 Regents of the University of California
  2. '\" Permission to use, copy, modify, and distribute this
  3. '\" documentation for any purpose and without fee is hereby
  4. '\" granted, provided that this notice appears in all copies.
  5. '\" The University of California makes no representations about
  6. '\" the suitability of this material for any purpose.  It is
  7. '\" provided "as is" without express or implied warranty.
  8. '\" 
  9. '\" $Header: /sprite/src/lib/c/etc/RCS/isinf.man,v 1.1 89/08/04 16:18:45 douglis Exp $ SPRITE (Berkeley)
  10. '/" 
  11. .so \*(]ltmac.sprite
  12. .HS isnan lib
  13. .BS
  14. '\" Note:  do not modify the .SH NAME line immediately below!
  15. .SH NAME
  16. isnan, isinf \- Determine whether double-precision floating point
  17. numbers are not-a-number or infinity.
  18. .SH SYNOPSIS
  19. .nf
  20. .sp
  21. int
  22. \fBisnan\fR(\fIvalue\fP)
  23. .sp
  24. int
  25. \fBisinf\fR(\fIvalue\fP)
  26. .SH ARGUMENTS
  27. .AP double value in
  28. Double-precision floating point number to check for type.
  29. .BE
  30.  
  31. .SH DESCRIPTION
  32. .PP
  33. \fBisnan\fR returns 1 if its argument is an IEEE double-precision
  34. floating-point number corresponding to NaN (not a number). 
  35. \fBisnan\fR returns 0 otherwise.
  36. .PP
  37. \fBisinf\fR returns 1 if its argument is an IEEE double-precision
  38. floating-point number corresponding to infinity.
  39. \fBisinf\fR returns 0 otherwise.
  40. .SH KEYWORDS
  41. not a number, infinity, IEEE, double
  42.